html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%; 
  background-image: url('achtergrond.webp'); 
  background-size: cover; 
  background-position: center center;
  background-attachment: fixed; 
  font-family: Calibri, sans-serif; 
  color: #fff;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #000000; 
  width: 100%;
  box-sizing: border-box; 
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.left-nav {
  display: flex;
  align-items: center;
}

nav .logo-container img {
  height: 80px; 
  margin-right: 20px;
}

.nav-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex; 
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  background-color: black;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: 2px solid white;
  border-radius: 10px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 2px solid white;
  border-radius: 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #444;
}

.dropdown-content a:hover {
  background-color: #444;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.search-container {
  flex-grow: 1; 
  text-align: center; 
}

.search-input {
  padding: 8px;
  font-size: 16px;
  width: 250px;
  border: 2px solid white;
  border-radius: 10px;
  background-color: #333;
  color: white;
}

.search-btn {
  background-color: #4CAF50;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  margin-left: 10px;
}

.search-btn:hover {
  background-color: #45a049;
}

.cart-container {
  margin-left: 20px;
}

.cart-container img {
  height: 80px; 
  width: auto; 
}

.cart-container a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

main {
  margin-top: 60px; 
  padding: 20px;
}

section {
  margin-bottom: 30px;
}

h1, h2 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 10px;
  font-family: Calibri, sans-serif; 
}

h1 {
  font-size: 32px;
  font-weight: bold;
}

p, ul, ol {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}
